home *** CD-ROM | disk | FTP | other *** search
/ Tech Arsenal 1 / Tech Arsenal (Arsenal Computer).ISO / tek-04 / gs24src.zip / GSADDRES < prev    next >
Text File  |  1992-03-16  |  500b  |  27 lines

  1. case $1 in
  2.   -dev) shift
  3.     for d in $*; do
  4.         echo device_\(gs_${d}_device\) >>_temp_.dh
  5.     done;;
  6.   -include) shift
  7.     for d in $*; do
  8.         /bin/sh < ./${d}.dev
  9.     done;;
  10.   -lib) shift
  11.     for l in $*; do
  12.         /bin/sh ./echoq -l${l} >>_temp_.dlb
  13.     done;;
  14.   -obj) shift
  15.     for o in $*; do
  16.         /bin/sh ./echoq ${o} >>_temp_.dob
  17.     done;;
  18.   -oper) shift
  19.     for o in $*; do
  20.         echo oper_\(${o}_op_defs\) >>_temp_.dop
  21.     done;;
  22.   -ps) shift
  23.     for f in $*; do
  24.         echo \(${f}.ps\) run >>_temp_.dps
  25.     done;;
  26. esac
  27.